ReactJS x TypeScript

Basic Prop Typing

type blogProps = { title: string, content?: string }
const BlogPost = ({title, content }: blogProps) => <div />
// or
const BlogPost = (props:blogProps) => <div />
// or
const BlogPost: FunctionComponent<BlogProps> = ({ title, content }) => <div/>

Typing Components

Tags ReactJS, TypeScript